73a60deb04afc42e5ec9281843420db37194cda8,VUE2/src/tufts/vue/LWLink.java,LWLink,drawArrows,#DrawContext#,1217
Before Change
dc.g.translate(-controlSize/2, controlOffset); // move half width of circle to left to center, and down 20 px
dc.g.setColor(Color.green);
//dc.g.setStroke(STROKE_EIGHTH);
dc.g.drawOval(0,0, controlSize,controlSize);
dc.g.setTransform(savedTransform);
}
After Change
dc.g.fill(HeadShape);
dc.g.draw(HeadShape);
if (DEBUG.Enabled) {
// test: move down line to draw "control"
dc.g.translate(HeadShape.getWidth() / 2, 0); // return to line
dc.g.translate(-controlSize/2, controlOffset); // move half width of circle to left to center, and down 20 px
dc.g.setColor(Color.green);
//dc.g.setStroke(STROKE_EIGHTH);
dc.g.drawOval(0,0, controlSize,controlSize);
}
dc.g.setTransform(savedTransform);